home *** CD-ROM | disk | FTP | other *** search
- global gLastVisFrame, gLastVisMovie, myCD, gSavePath
-
- on startMovie
- set myCD to cHECKdRIVE("E1.txt")
- end
-
- on stopMovie
- set the keyDownScript to EMPTY
- end
-
- on FForward
- if the key = " " then
- go(marker(1))
- set the keyDownScript to EMPTY
- end if
- end
-
- on cHECKdRIVE weirdfile
- repeat with i = 66 to 90
- set drive to numToChar(i)
- set thisPath to string(drive & ":\licence\" & weirdfile)
- set myFile to new(xtra("fileIO"))
- openFile(myFile, thisPath, 1)
- if status(myFile) = 0 then
- set myFile to 0
- return drive & ":"
- exit
- end if
- end repeat
- set myFile to 0
- end
-
- on resetSStest
- if objectp(myFile) then
- set myFile to 0
- end if
- set myFile to new(xtra("fileIO"))
- if the machineType = 256 then
- setFilterMask(myFile, "All files, *.*, Text files, *.txt")
- else
- setFilterMask(myFile, "TEXT")
- end if
- set fileName to "Visited.txt"
- if not voidp(fileName) then
- openFile(myFile, gSavePath & fileName, 0)
- set theFile to readFile(myFile)
- setPosition(myFile, 0)
- writeString(myFile, field "defMyField")
- else
- nothing()
- end if
- closeFile(myFile)
- set myFile to 0
- end
-
- on LaunchSSS
- set ParameterList to "Install.exe,MenuBack," & myCD & "\Media\SSaver," & myCD & "\MEDIA,4000,20000"
- open(ParameterList, myCD & "\MEDIA\ZLNCH32.EXE")
- end
-
- on LaunchSSM
- set ParameterList to "Install.exe,MenuBack," & myCD & "\Media\SSaver\NoSound," & myCD & "\MEDIA,4000,20000"
- open(ParameterList, myCD & "\MEDIA\ZLNCH32.EXE")
- end
-